home *** CD-ROM | disk | FTP | other *** search
- #define WM_MYCOMMAND (WM_USER+1000)
-
- #define IDD_GROSS 100
- #define IDD_FED 101
- #define IDD_STATE 102
- #define IDD_LOCAL 103
- #define IDD_FICA 104
- #define IDD_OTHER1 105
- #define IDD_OTHER2 106
- #define IDD_OTHER3 107
- #define IDD_OTHER4 108
- #define IDD_OTHER5 109
-
- #define IDD_C_GROSS (IDD_GROSS +100)
- #define IDD_C_FED (IDD_FED +100)
- #define IDD_C_STATE (IDD_STATE +100)
- #define IDD_C_LOCAL (IDD_LOCAL +100)
- #define IDD_C_FICA (IDD_FICA +100)
- #define IDD_C_OTHER1 (IDD_OTHER1 +100)
- #define IDD_C_OTHER2 (IDD_OTHER2 +100)
- #define IDD_C_OTHER3 (IDD_OTHER3 +100)
- #define IDD_C_OTHER4 (IDD_OTHER4 +100)
- #define IDD_C_OTHER5 (IDD_OTHER5 +100)
-
- #define IDD_NETPAY 120
- #define IDD_REPAINT 121
- #define IDD_MEMORIZE 122
-
- #define IDM_MODAL 1000
-
- //---------------------- MONEY, used to avoid floating point anything
-
- typedef struct tagMONEY
- {
- LONG Dollars; // 4
- int Cents; // 2
- } // --
- MONEY; // 4 bytes total
-
- typedef MONEY FAR *LPMONEY;
- typedef MONEY NEAR *PMONEY;
-
- #define PLAIN 0
- #define COMMAS 1
- #define CURRENCY 2